@font-face {
  font-family: "Uncut Sans";
  src: url("/brand/uncut-sans.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}
@font-face {
  font-family: "Anybody";
  src: url("/brand/anybody.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 50% 150%;
  font-display: swap;
}
:root {
  --paper: #f7f6f2;
  --ink: #111216;
  --blue: #2f4bff;
  --muted: #62646a;
  --silver: #b9bdc8;
  --line: #d6d5d0;
  --light: #eeede8;
  --coral: #e75a3b;
  --max: 1440px;
  --gutter: clamp(24px, 4.4vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Uncut Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss07" on;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Anybody", Arial, sans-serif;
  font-weight: 480;
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-stretch: 105%;
}
h1 {
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 450;
}
h2 {
  font-size: clamp(34px, 3.65vw, 57px);
}
h3 {
  font-size: 25px;
}
p {
  color: var(--muted);
}
em {
  font-style: normal;
  color: var(--blue);
}
ul,
ol {
  padding-left: 22px;
}
small {
  font-size: 12px;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button[aria-disabled="true"],
a[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}
input,
textarea,
select {
  min-width: 0;
}
::selection {
  background: var(--blue);
  color: white;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.dark :focus-visible,
.site-footer :focus-visible,
.identity-study:focus-visible {
  outline-color: white;
}
[hidden] {
  display: none !important;
}
.container {
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--max);
  margin-inline: auto;
}
.section {
  padding-block: clamp(80px, 8vw, 130px);
}
.small-label {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 550;
  display: block;
  letter-spacing: 0.01em;
  text-transform: none;
}
.muted {
  color: var(--muted);
}
.large-copy {
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
}
.fine-print,
.field-help {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.fine-print {
  margin-top: 18px;
}
.field-help {
  margin: 0 0 16px;
}
.text-link {
  display: inline-block;
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px solid currentColor;
  padding-block: 5px;
  text-underline-offset: 5px;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 26px;
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  border-radius: 0;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: normal;
}
.button:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.button-outline:hover {
  color: white;
}
.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.text-button {
  border: 0;
  background: none;
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  padding: 10px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 15px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
}
.skip-link:focus {
  top: 10px;
  opacity: 1;
  pointer-events: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.4;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  color: var(--muted);
  white-space: nowrap;
}
.tag-row {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}
.dot {
  margin: 0 7px;
}
.mini-mark {
  font-family: "Anybody", Arial, sans-serif;
  font-size: 50px;
  font-weight: 760;
  font-stretch: 110%;
  letter-spacing: -0.09em;
  line-height: 1;
  display: inline-block;
}
.dark {
  background: var(--ink);
  color: var(--paper);
}
.dark p,
.dark .small-label {
  color: var(--silver);
}
.dark .text-link {
  color: white;
}

.community-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.community-steps h2 {
  margin: 20px 0;
}
.community-steps > div > p {
  max-width: 460px;
  margin-bottom: 30px;
}
.numbered-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.numbered-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.numbered-list li:first-child {
  padding-top: 0;
}
.numbered-list li > span {
  font-size: 13px;
  color: var(--blue);
  padding-top: 6px;
}
.numbered-list h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.numbered-list p {
  font-size: 14px;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-block: 50px;
}
.principle-grid h3 {
  font-size: 27px;
  margin-bottom: 17px;
}
.principle-grid p {
  font-size: 14px;
}
.destination-list {
  border-top: 1px solid var(--line);
}
.destination-list > a,
.destination-list > div {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.destination-list strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}
.destination-list span:not(.tag) {
  font-size: 14px;
  color: var(--muted);
}
.destination-list a:hover strong {
  color: var(--blue);
}
.filter-bar {
  display: grid;
  grid-template-columns: 1fr 240px auto;
  gap: 14px;
  margin-bottom: 35px;
}
.filter-bar input,
.filter-bar select {
  height: 50px;
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 15px;
  font-size: 14px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 100px;
  align-items: start;
}
.prose {
  font-size: 17px;
  line-height: 1.85;
}
.prose h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 40px 0 18px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  margin: 30px 0 16px;
}
.prose p {
  margin-bottom: 22px;
}
.prose a:not(.button):not(.text-link) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose section {
  margin-bottom: 42px;
  scroll-margin-top: 30px;
}
.note {
  background: var(--light);
  padding: 27px 30px;
  border-left: 3px solid var(--blue);
  margin-top: 35px;
}
.note h3 {
  font-size: 21px;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
.note p {
  font-size: 13px;
  margin: 10px 0 0;
}
.note .button {
  margin-top: 20px;
}
.note > h2 {
  font-size: 30px;
}
.note .text-link {
  margin-top: 20px;
}
.wide-prose {
  max-width: 900px;
}
.journal-list > a {
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  gap: 70px;
  padding: 0 0 55px;
  margin-bottom: 55px;
  border-bottom: 1px solid var(--line);
}
.journal-cover {
  height: 300px;
  background: #e3e7ef;
  white-space: pre-line;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.journal-list h2 {
  font-size: 42px;
  margin: 20px 0;
}
.journal-list p {
  max-width: 510px;
  margin-bottom: 26px;
}
.article-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 90px;
  max-width: 1160px;
}
.article-layout > aside > p {
  font-size: 12px;
  line-height: 2;
  margin: 25px 0;
}
.article-layout .prose {
  max-width: 720px;
}
.status-table > div {
  display: grid;
  grid-template-columns: 260px 145px 1fr;
  gap: 35px;
  align-items: center;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.status-table > div:last-child {
  border-bottom: 1px solid var(--line);
}
.status-table strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}
.status-table .tag {
  justify-self: start;
}
.status-table p {
  font-size: 14px;
}
.roadmap {
  margin: 0;
  padding: 0;
  list-style: none;
}
.roadmap li {
  padding: 0 0 35px 30px;
  border-left: 1px solid #424551;
  position: relative;
}
.roadmap li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--silver);
  left: -4px;
  top: 7px;
}
.roadmap li:last-child {
  padding-bottom: 0;
}
.roadmap li > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--silver);
}
.roadmap h3 {
  font-size: 26px;
  margin: 13px 0;
}
.roadmap p {
  font-size: 14px;
}
.dark .detail-layout > div .large-copy {
  margin-top: 30px;
}
.dark .detail-layout h2 {
  margin-top: 20px;
}
.drops-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.collectible-concept {
  background: var(--blue);
  color: white;
  min-height: 520px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.concept-label {
  font-size: 10px;
  letter-spacing: 0.02em;
}
.collectible-mark {
  font-size: 235px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.1em;
  align-self: center;
  line-height: 1;
}
.collectible-concept > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
}
.collectible-concept > div:last-child span {
  font-size: 10px;
}
.drops-layout h2 {
  margin: 20px 0;
}
.drops-layout .large-copy {
  font-size: 22px;
  margin-bottom: 22px;
}
.release-checklist {
  margin: 30px 0;
}
.release-checklist h3 {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.release-checklist ul {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}
.notice-strip {
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  padding: 30px;
  margin-bottom: 100px;
}
.notice-strip p {
  font-size: 14px;
  margin: 10px 0 18px;
}
.brand-hero {
  padding: 80px;
  background: var(--ink);
  color: white;
}
.brand-hero img {
  width: 100%;
  max-width: 840px;
  max-height: 150px;
}
.brand-hero p {
  color: var(--silver);
  margin-top: 40px;
  font-size: 22px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 20px;
}
.brand-color {
  padding: 30px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}
.brand-color.blue {
  background: var(--blue);
  color: white;
}
.brand-color.carbon {
  background: var(--ink);
  color: white;
}
.brand-color.white {
  background: var(--paper);
  border: 1px solid var(--line);
}
.download-panel {
  background: var(--light);
  padding: 40px;
}
.download-panel h2 {
  font-size: 32px;
  margin-top: 25px;
}
.download-panel p {
  font-size: 14px;
  margin: 20px 0;
}
.download-panel .button {
  margin-bottom: 20px;
}
.download-panel > .text-link {
  display: flex;
  margin-top: 17px;
  font-size: 12px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 100px;
  max-width: 1150px;
}
.legal-layout nav {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}
.legal-layout nav a:hover {
  color: var(--blue);
}
.studio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.studio-offers > .small-label {
  margin-bottom: 28px;
}
.offer {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.offer > span {
  font-size: 11px;
  color: var(--muted);
  padding-top: 6px;
}
.offer h2 {
  font-size: 31px;
  line-height: 1.18;
  max-width: 365px;
}
.process-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 550;
}
.process-mini svg {
  width: 16px;
}
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px;
}
.form-panel h2 {
  font-size: 32px;
  margin: 13px 0 20px;
}
.form-panel > p {
  font-size: 14px;
  margin-bottom: 27px;
}
.form-panel .button {
  width: 100%;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 19px;
}
.field > span {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}
.field small {
  font-weight: 400;
  color: var(--muted);
  font-size: 10px;
  margin-left: 10px;
}
.field input,
.field textarea,
.field select {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  width: 100%;
  font-size: 14px;
  min-height: 48px;
}
.field textarea {
  resize: vertical;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7d8390;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  outline: 1px solid var(--blue);
  outline-offset: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.7;
  margin: 17px 0;
  color: var(--muted);
}
.check input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 2px 0 0;
  accent-color: var(--blue);
}
.check a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--ink);
}
.form-status:empty {
  display: none;
}
.form-status {
  padding: 15px;
  margin: 18px 0;
  background: #eef1ff;
  color: #233aa9;
  border-left: 3px solid var(--blue);
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.form-status.is-error {
  background: #fff0ec;
  color: #9e3523;
  border-color: #bf4932;
}
.form-status.is-success {
  background: #e9edff;
  color: #233aa9;
  border-color: var(--blue);
}
.honey {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.interest-options {
  padding: 0;
  margin: 22px 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.interest-options legend {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.interest-options legend span {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
}
.interest-options label {
  position: relative;
}
.interest-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.interest-options label > span {
  display: block;
  padding: 8px 11px;
  border: 1px solid var(--line);
  font-size: 11px;
  cursor: pointer;
}
.interest-options input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.interest-options input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.cf-turnstile {
  margin: 20px 0;
  min-height: 65px;
}
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: 55px 85px;
  gap: 0;
  max-width: 1120px;
}
.auth-story {
  background: var(--blue);
  color: white;
  padding: 44px;
  display: flex;
  flex-direction: column;
  min-height: 740px;
  overflow: hidden;
}
.auth-story .text-link {
  font-size: 11px;
}
.auth-story h1 {
  font-size: 88px;
  margin: 60px 0 25px;
}
.auth-story em {
  color: #cbd2ff;
}
.auth-story p {
  color: #e0e4ff;
  font-size: 16px;
  max-width: 340px;
}
.auth-mark {
  font-size: 170px;
  line-height: 1;
  letter-spacing: -0.1em;
  font-weight: 900;
  font-style: italic;
  margin-top: auto;
  padding-block: 40px;
}
.auth-story > span {
  font-size: 11px;
}
.auth-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px;
}
.auth-panel h2 {
  font-size: 31px;
  margin: 15px 0;
}
.auth-panel > p {
  font-size: 13px;
  margin-bottom: 27px;
}
.auth-panel form > .button {
  width: 100%;
  margin-top: 9px;
}
.auth-switch {
  font-size: 12px;
  margin-top: 25px;
  line-height: 2;
}
.auth-switch a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.recovery-result h3 {
  font-size: 25px;
}
.recovery-result p {
  font-size: 13px;
  margin: 15px 0;
}
.recovery-code {
  display: block;
  overflow-wrap: anywhere;
  font-size: 17px;
  background: var(--light);
  padding: 18px;
  font-weight: 650;
  letter-spacing: 0.03em;
  margin: 20px 0;
}
.recovery-result .button {
  width: 100%;
  margin-bottom: 16px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq {
  margin-top: 32px;
}
summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.faq summary {
  padding-right: 25px;
}
.faq p {
  font-size: 14px;
  margin: 15px 0;
}
.faq a {
  text-decoration: underline;
  color: var(--blue);
}
.member-layout {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 60px;
  padding-block: 50px 100px;
  min-height: 70vh;
}
.member-nav {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.member-id {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 40px;
}
.member-id .mini-mark {
  color: var(--blue);
  font-size: 42px;
}
.member-id > span:last-child {
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.member-id small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.member-nav nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.member-nav nav > a {
  font-size: 12px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.member-nav nav svg {
  width: 16px;
  height: 16px;
}
.member-nav nav [aria-current],
.member-nav nav a:hover {
  color: var(--blue);
}
.member-nav > p {
  font-size: 12px;
  line-height: 2;
  margin-top: 50px;
}
.logout-button {
  margin-top: 30px;
  padding: 10px 0;
  background: none;
  border: 0;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
}
.member-main {
  min-width: 0;
}
.member-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}
.member-heading h1 {
  font-size: 43px;
  margin: 14px 0 13px;
  overflow-wrap: anywhere;
}
.member-heading p {
  font-size: 14px;
}
.member-heading > .button {
  flex-shrink: 0;
}
.hub-welcome {
  background: var(--blue);
  color: white;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}
.hub-welcome h2 {
  font-size: 31px;
  margin: 14px 0;
}
.hub-welcome p {
  font-size: 13px;
  color: #e0e4ff;
  max-width: 480px;
}
.hub-welcome .mini-mark {
  font-size: 100px;
  flex-shrink: 0;
}
.tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 15px;
  overflow-x: auto;
}
.tabs > a {
  white-space: nowrap;
  font-size: 12px;
  padding: 13px 0;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
}
.tabs [aria-current] {
  border-color: var(--blue);
  color: var(--blue);
}
.empty-state {
  border: 1px solid var(--line);
  padding: 55px 30px;
  text-align: center;
  margin-top: 30px;
}
.empty-state .mini-mark {
  color: #8e9beb;
  font-size: 49px;
  margin-bottom: 25px;
}
.empty-state h3 {
  font-size: 26px;
  margin-bottom: 16px;
}
.empty-state p {
  font-size: 14px;
  max-width: 460px;
  margin: auto;
}
.empty-state .text-link {
  margin-top: 25px;
}
.discussion {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}
.letter-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  background: #e4e9fc;
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
}
.discussion .small-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.01em;
  text-transform: none;
}
.discussion h2 {
  font-size: 24px;
  margin: 9px 0 13px;
}
.discussion p {
  font-size: 13px;
  overflow-wrap: anywhere;
}
.discussion-meta {
  display: block;
  margin-top: 17px;
  font-size: 10px;
  color: var(--muted);
}
.discussion > svg {
  margin-top: 20px;
  color: var(--blue);
}
.discussion-detail {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.discussion-detail h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 18px 0 25px;
  overflow-wrap: anywhere;
}
.discussion-detail p {
  font-size: 16px;
  line-height: 1.8;
}
.preserve-lines {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.discussion-detail .button-row {
  margin-top: 30px;
}
.replies {
  padding-top: 40px;
}
.replies h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.replies > article {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.replies article strong {
  font-size: 13px;
}
.replies article > span {
  font-size: 10px;
  color: var(--muted);
  margin-left: 12px;
}
.replies article p {
  font-size: 14px;
  margin-top: 13px;
}
.replies form {
  margin-top: 30px;
}
.announcement-card {
  padding: 27px 30px;
  background: var(--light);
  border-left: 3px solid var(--blue);
  margin-bottom: 25px;
}
.announcement-card h2 {
  font-size: 25px;
  margin: 12px 0;
}
.announcement-card p {
  font-size: 14px;
}
.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.event-date {
  font-size: 26px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: -0.05em;
}
.event-card h2 {
  font-size: 30px;
  margin: 15px 0;
}
.event-card p {
  font-size: 14px;
  margin-bottom: 20px;
}
.poll {
  border: 1px solid var(--line);
  padding: 30px;
  margin-top: 25px;
}
.poll h2 {
  font-size: 30px;
  margin: 20px 0;
}
.poll-option {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  font-size: 13px;
}
.poll-option > strong {
  margin-left: auto;
  font-size: 11px;
  white-space: nowrap;
  color: var(--muted);
}
.poll-option button[aria-pressed="true"],
.button[aria-pressed="true"] {
  background: var(--blue);
  color: white;
}
.account-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 30px;
  align-items: start;
}
.account-grid .form-panel {
  padding: 27px;
}
.account-grid .form-panel h2 {
  margin-top: 0;
}
.member-card {
  background: var(--blue);
  color: white;
  padding: 30px;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.member-card > span {
  font-size: 9px;
}
.member-card .mini-mark {
  font-size: 90px;
  padding-block: 15px;
}
.member-card h2 {
  font-size: 28px;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
}
.invite-panel {
  padding-top: 30px;
}
.invite-panel h2 {
  font-size: 25px;
  margin-bottom: 17px;
}
.invite-panel > p {
  font-size: 13px;
  margin-bottom: 20px;
}
.invite-panel input {
  font-size: 11px;
}
.account-contributions {
  margin-top: 50px;
}
.account-contributions > h2,
.account-security > h2 {
  font-size: 31px;
  margin-bottom: 25px;
}
.contribution {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.contribution h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.contribution p {
  font-size: 13px;
}
.contribution .note {
  margin-top: 15px;
}
.account-security {
  padding-top: 50px;
}
.account-security > p {
  font-size: 13px;
  margin-bottom: 20px;
}
.account-security details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.account-security details > p {
  font-size: 13px;
  margin: 20px 0;
}
.account-security details > form {
  max-width: 480px;
  margin-top: 25px;
}
.danger {
  background: #a33928;
  border-color: #a33928;
}
.danger:hover {
  background: #862b1d;
}
.admin-layout {
  padding-block: 50px 90px;
  min-height: 70vh;
}
.admin-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.admin-heading h1 {
  font-size: 47px;
  margin: 15px 0;
}
.admin-heading p {
  font-size: 14px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  margin: 40px 0 25px;
}
.admin-stats > div {
  padding: 25px;
  border-right: 1px solid var(--line);
}
.admin-stats > div:first-child {
  padding-left: 0;
}
.admin-stats > div:last-child {
  border: 0;
}
.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.admin-stats strong {
  font-size: 44px;
  line-height: 1.3;
  letter-spacing: -0.05em;
}
.admin-tabs {
  gap: 26px;
  margin-bottom: 35px;
}
.admin-layout > h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.admin-record {
  border: 1px solid var(--line);
  padding: 25px;
  margin-top: 17px;
  background: #fff;
}
.admin-record > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 13px;
}
.admin-record summary > span {
  font-weight: 400;
}
.admin-record summary strong {
  font-weight: 650;
}
.record-body {
  padding-top: 25px;
}
.record-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  font-size: 12px;
  margin-bottom: 22px;
}
.record-meta a {
  text-decoration: underline;
  color: var(--blue);
}
.admin-record form {
  max-width: 640px;
  margin-top: 25px;
}
.admin-record h3 {
  font-size: 25px;
  margin: 13px 0;
}
.admin-record p {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.record-heading span {
  font-size: 11px;
  color: var(--muted);
}
.record-heading {
  margin-bottom: 20px;
}
.admin-record .button {
  width: auto;
}
.member-record {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.member-record > div > span {
  font-size: 11px;
  color: var(--muted);
}
.member-record form {
  min-width: 200px;
  margin: 0;
}
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.admin-form {
  margin-top: 40px;
  max-width: 780px;
}
.admin-form h3 {
  margin-bottom: 20px;
}
.audit-list > div {
  display: grid;
  grid-template-columns: 180px 220px 1fr;
  gap: 30px;
  font-size: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
.compact {
  margin-bottom: 20px;
}
.compact h2 {
  font-size: 32px;
}
dialog {
  width: min(600px, calc(100% - 32px));
  max-height: calc(100% - 50px);
  border: 0;
  padding: 34px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px #11121633;
}
dialog::backdrop {
  background: #111216a6;
  backdrop-filter: blur(3px);
}
.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.dialog-header h2 {
  font-size: 31px;
}
.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 27px;
  line-height: 1;
  flex-shrink: 0;
}
dialog > p {
  font-size: 13px;
  margin: 18px 0 24px;
}
dialog form > .button {
  width: 100%;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  background: var(--ink);
  color: white;
  border: 1px solid var(--silver);
  padding: 14px 22px;
  font-size: 13px;
  z-index: 100;
  display: none;
}
.toast.show {
  display: block;
}

/* The public site is an open editorial canvas. Artwork has its own edges. */
.announcement {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px var(--gutter) 0;
  max-width: 1680px;
  margin: auto;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}
.announcement a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  flex-shrink: 0;
}
.site-header {
  max-width: 1680px;
  margin: auto;
  padding: 29px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 20;
  background: var(--paper);
}
.logo {
  width: 222px;
  flex-shrink: 0;
}
.logo img {
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 30px;
}
.site-header nav > a {
  font-size: 14px;
  padding-block: 8px;
  white-space: nowrap;
}
.site-header nav > a:hover,
.site-header nav > a[aria-current] {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.login-link {
  font-size: 12px;
}
.membership-nav {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  gap: 9px;
}
.membership-nav span {
  font-size: 11px;
  color: var(--muted);
}
.membership-nav:hover {
  background: var(--light);
  border-color: var(--ink);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 11px;
}
.menu-toggle span {
  height: 1px;
  background: var(--ink);
  display: block;
  margin: 7px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.opening-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  font-size: 13px;
}
.opening-top p,
.opening-top > span {
  color: var(--ink);
}
.opening-top > span {
  text-align: right;
}
.home-opening {
  padding-top: 45px;
  padding-bottom: 65px;
}
.learn-invitation {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding-block: 32px 44px;
}
.learn-invitation > div > span {
  font-size: 13px;
  color: var(--blue);
}
.learn-invitation h2 {
  font-size: clamp(25px, 2.2vw, 34px);
  margin-top: 8px;
}
.learn-invitation > p {
  max-width: 440px;
  font-size: 15px;
  color: #55575f;
}
.learn-invitation .button {
  white-space: nowrap;
}
@media (max-width: 960px) {
  .learn-invitation {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .learn-invitation > .button {
    justify-self: start;
  }
}
@media (max-width: 600px) {
  .learn-invitation {
    grid-template-columns: 1fr;
    padding-block: 28px 36px;
  }
}
.home-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
.home-title h1 {
  font-size: clamp(54px, 7vw, 108px);
  line-height: 1.07;
  font-weight: 450;
  max-width: 1100px;
}
.home-title h1 em {
  white-space: nowrap;
}
.home-monogram {
  font-family: "Anybody", sans-serif;
  font-size: 100px;
  font-stretch: 115%;
  font-weight: 700;
  letter-spacing: -0.12em;
  transform: rotate(-12deg);
  color: var(--blue);
  margin: 55px 25px 0 35px;
  align-self: flex-end;
}
.opening-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
}
.opening-bottom > p {
  max-width: 430px;
  font-size: 17px;
}
.opening-bottom .button-row {
  flex-shrink: 0;
}
.common-ground {
  background: #e7e9ef;
  position: relative;
  overflow: hidden;
  padding: 34px 0 28px;
}
.ground-top,
.ground-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}
.ground-top h2 {
  font-size: 29px;
  line-height: 1.15;
}
.ground-top > span {
  font-size: 13px;
}
.ground-bottom {
  align-items: flex-end;
}
.ground-bottom p {
  color: var(--ink);
  font-size: 16px;
}
.common-ground > .common-form {
  display: block;
  width: min(100%, 1120px);
  height: clamp(300px, 39vw, 550px);
  margin: -40px auto -35px;
  overflow: visible;
}
.common-form {
  display: block;
  width: 100%;
  color: var(--blue);
  isolation: isolate;
}
.form-shadow {
  color: #142584;
}
.loop-one {
  color: var(--blue);
}
.loop-two {
  color: var(--blue);
}
.form-bridge {
  color: var(--blue);
}
.form-loop {
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.common-ground:hover .loop-one {
  transform: translate(-12px, 4px);
}
.common-ground:hover .loop-two {
  transform: translate(12px, -4px);
}
.community-manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 45px;
}
.community-manifesto > .small-label {
  padding-top: 9px;
}
.community-manifesto h2 {
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 430;
  line-height: 1.16;
}
.manifesto-copy {
  margin-top: 45px;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}
.manifesto-copy .text-link {
  grid-column: 1/-1;
  margin-top: 8px;
}
.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.pathways > a {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pathway-label {
  font-size: 13px;
}
.pathways h2 {
  margin: 40px 0 22px;
  font-size: clamp(30px, 3vw, 47px);
}
.pathways p {
  font-size: 16px;
  max-width: 330px;
  margin-bottom: 25px;
}
.pathways .text-link {
  margin-top: auto;
}
.pathways > a:hover h2 {
  color: var(--blue);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-heading .small-label {
  margin-bottom: 18px;
}
.section-heading p {
  max-width: 420px;
  font-size: 15px;
}
.project-row {
  display: grid;
  grid-template-columns: 64px 1fr 145px;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.project-row:last-child {
  border-bottom: 1px solid var(--line);
}
.project-row h3 {
  font-family: "Uncut Sans", sans-serif;
  letter-spacing: -0.03em;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 10px 0;
}
.project-row p {
  font-size: 15px;
  max-width: 670px;
}
.row-index {
  font-size: 14px;
  align-self: start;
  padding-top: 6px;
  color: var(--muted);
}
.project-row .small-label {
  font-size: 12px;
  color: var(--muted);
}
.row-action {
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.project-row:hover h3 {
  color: var(--blue);
}
.section-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 26px;
}
.section-end > span {
  font-size: 12px;
  color: var(--muted);
}
.identity-study {
  position: relative;
  background: var(--blue);
  color: var(--paper);
  padding: 34px 40px 30px;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.study-signature {
  font-family: "Anybody", sans-serif;
  font-stretch: 110%;
  font-weight: 750;
  font-size: 27px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.identity-study .common-form {
  height: 420px;
  margin: -32px auto -40px;
  max-width: 950px;
  overflow: visible;
}
.form-paper .loop-one,
.form-paper .loop-two,
.form-paper .form-bridge {
  color: var(--paper);
}
.form-paper .form-shadow {
  color: #9aabff;
}
.study-caption {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 19px;
  line-height: 1.2;
  position: relative;
}
.study-caption > span:last-child {
  text-align: right;
}
.studio-invitation {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 8%;
}
.studio-invitation-copy .small-label {
  margin-bottom: 26px;
}
.studio-invitation-copy h2 {
  font-size: clamp(35px, 4vw, 61px);
  line-height: 1.12;
}
.studio-invitation-copy p {
  max-width: 370px;
  margin: 28px 0;
}
.studio-invitation-art {
  display: block;
}
.study-compact {
  min-height: 610px;
  padding: 32px;
}
.study-compact .common-form {
  height: 390px;
  width: 130%;
  max-width: none;
  margin-left: -15%;
}
.study-compact .study-caption {
  font-size: 16px;
}
.studio-invitation-art:hover .loop-two {
  transform: translate(10px, -10px);
}
.editorial-row {
  display: grid;
  grid-template-columns: 95px 1fr 120px;
  gap: 35px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.editorial-row:last-child {
  border-bottom: 1px solid var(--line);
}
.editorial-symbol {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-family: "Anybody", sans-serif;
  font-size: 56px;
  line-height: 1;
}
.symbol-1 {
  background: var(--coral);
  color: var(--ink);
}
.symbol-2 {
  background: var(--ink);
  color: var(--paper);
}
.editorial-text .small-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 9px;
}
.editorial-text h3 {
  font-family: "Uncut Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 27px;
}
.editorial-action {
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.editorial-row:hover h3 {
  color: var(--blue);
}
.join-banner {
  padding: 70px 0 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
}
.join-banner h2 {
  max-width: 850px;
}
.join-banner p {
  margin-top: 20px;
}
.join-banner .button {
  flex-shrink: 0;
}
.site-footer {
  background: var(--blue);
  color: var(--paper);
  padding: 60px var(--gutter) 25px;
  overflow: hidden;
}
.footer-top,
.footer-grid,
.footer-bottom,
.footer-word {
  max-width: var(--max);
  margin-inline: auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-top > a:first-child {
  width: 270px;
}
.footer-top p {
  color: var(--paper);
  font-size: 15px;
}
.footer-social {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 65px;
}
.footer-grid p {
  color: var(--paper);
  font-size: 16px;
}
.footer-grid h2 {
  font-family: "Uncut Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 19px;
  color: #cbd2ff;
}
.footer-grid a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  width: fit-content;
}
.footer-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-word {
  font-family: "Anybody", sans-serif;
  font-size: clamp(90px, 17vw, 280px);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 1.06;
  margin-top: 55px;
  margin-bottom: 35px;
  text-align: center;
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #7487ff;
  padding-top: 22px;
  font-size: 11px;
  color: #e4e7ff;
  align-items: flex-start;
}
.footer-bottom > span:nth-child(2) {
  display: flex;
  gap: 20px;
}
.footer-bottom > span:last-child {
  max-width: 360px;
  text-align: right;
}
.page-intro {
  padding: 45px 0 75px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 50px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-intro h1 {
  max-width: 1230px;
  font-size: clamp(44px, 6.2vw, 94px);
  font-weight: 430;
}
.intro-copy {
  max-width: 720px;
  font-size: 21px;
  line-height: 1.5;
  margin-top: 32px;
}
.page-intro.dark .breadcrumb {
  color: var(--silver);
}
.page-intro.dark em {
  color: #9aabff;
}
.studio-opening {
  padding-top: 40px;
  padding-bottom: 72px;
}
.studio-opening h1 {
  margin-top: 54px;
  font-size: clamp(50px, 6.35vw, 99px);
  font-weight: 440;
  line-height: 1.15;
}
.studio-opening-bottom {
  display: grid;
  grid-template-columns: 0.65fr 1fr auto;
  gap: 50px;
  align-items: center;
  margin-top: 42px;
}
.studio-opening-bottom p {
  max-width: 500px;
  font-size: 17px;
}
.studio-seal {
  font-family: "Anybody", sans-serif;
  font-stretch: 115%;
  font-size: 76px;
  color: var(--blue);
  font-weight: 640;
  line-height: 1;
}
.round-link {
  border: 1px solid var(--ink);
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s;
}
.round-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.studio-showcase > .section-heading {
  margin-bottom: 25px;
}
.studio-showcase > .section-heading h2 {
  font-size: 23px;
  letter-spacing: -0.025em;
  font-family: "Uncut Sans", sans-serif;
}
.studio-showcase > .section-heading p {
  font-size: 12px;
  text-align: right;
}
.showcase-main {
  display: block;
}
.work-caption {
  display: flex;
  align-items: baseline;
  gap: 25px;
  padding: 19px 0 0;
}
.work-caption h3 {
  font-family: "Uncut Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 21px;
}
.work-caption > span {
  font-size: 12px;
  color: var(--muted);
}
.work-caption .text-link {
  margin-left: auto;
  font-size: 14px;
  color: var(--ink);
  flex-shrink: 0;
}
.showcase-main:hover .loop-two {
  transform: translate(14px, -8px);
}
.showcase-pair {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 7%;
  align-items: start;
  margin-top: 70px;
}
.type-study {
  background: #e7e9ef;
  padding: 32px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.type-study > .small-label {
  font-size: 12px;
}
.type-study-word {
  font-family: "Anybody", sans-serif;
  font-weight: 440;
  font-size: clamp(75px, 8.7vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-block: 40px;
}
.type-study-word > span:nth-child(3) {
  grid-column: 1;
}
.type-plus {
  font-size: 1.3em;
  font-weight: 350;
  align-self: start;
  color: var(--blue);
  padding-right: 10px;
}
.type-equals {
  font-size: 0.52em;
  align-self: end;
  padding-bottom: 7px;
}
.type-study > span:last-child {
  font-size: 12px;
}
.poster-study {
  padding-top: 100px;
}
.poster-inner {
  background: var(--coral);
  padding: 30px;
  position: relative;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.poster-inner > span {
  font-size: 12px;
  position: relative;
  z-index: 2;
}
.poster-inner strong {
  font-family: "Anybody", sans-serif;
  font-size: clamp(38px, 4.6vw, 70px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}
.poster-inner strong > span {
  font-weight: 360;
}
.poster-study > p {
  font-size: 11px;
  line-height: 1.5;
  max-width: 370px;
  margin-top: 15px;
}
.capabilities {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8%;
}
.capabilities-intro > .small-label {
  margin-bottom: 30px;
}
.capabilities-intro h2 {
  font-size: clamp(34px, 3.5vw, 54px);
}
.capabilities-intro p {
  margin-top: 28px;
  max-width: 360px;
}
.capability-list details {
  border-top: 1px solid var(--line);
}
.capability-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.capability-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
}
.capability-list summary::-webkit-details-marker {
  display: none;
}
.capability-list summary:after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  margin-left: auto;
}
.capability-list details[open] summary:after {
  content: "-";
  font-size: 26px;
}
.capability-number {
  font-size: 12px;
  color: var(--muted);
}
.capability-list h3 {
  font-family: "Uncut Sans", sans-serif;
  font-size: 26px;
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.2;
}
.capability-detail {
  padding: 0 40px 30px 40px;
}
.capability-detail p {
  font-size: 16px;
  margin-bottom: 20px;
}
.capability-detail .text-link {
  font-size: 14px;
}
.process-section {
  padding-block: 80px;
  background: #eeede8;
}
.studio-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
}
.studio-process li {
  border-top: 1px solid #bbbcb7;
  padding-top: 18px;
}
.studio-process li > span {
  font-size: 12px;
}
.studio-process h3 {
  font-family: "Uncut Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 28px 0 15px;
}
.studio-process p {
  font-size: 15px;
  max-width: 330px;
}
.studio-content {
  grid-template-columns: 1fr 1.15fr;
  gap: 8%;
  align-items: start;
}
.brief-intro > .small-label {
  margin-bottom: 30px;
}
.brief-intro h2 {
  font-size: clamp(38px, 4vw, 62px);
}
.brief-intro > p {
  max-width: 375px;
  margin-top: 30px;
}
.brief-expectation {
  max-width: 375px;
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 25px;
}
.brief-expectation h3 {
  font-family: "Uncut Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.brief-expectation p {
  font-size: 14px;
}
.brief-mark {
  display: inline-block;
  font-family: "Anybody", sans-serif;
  font-size: 115px;
  font-weight: 700;
  font-stretch: 115%;
  letter-spacing: -0.1em;
  color: var(--blue);
  line-height: 1;
  margin-top: 45px;
}
.form-panel {
  background: transparent;
  border: 0;
  padding: 32px 0;
}
.studio-brief {
  padding: 0;
}
.form-panel h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 12px 0 18px;
  letter-spacing: -0.03em;
}
.form-panel > p {
  font-size: 15px;
  margin-bottom: 38px;
  max-width: 500px;
}
.studio-brief > .small-label {
  margin-bottom: 15px;
}
.field {
  margin-bottom: 25px;
}
.field > span {
  font-size: 14px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #969994;
  border-radius: 0;
  padding: 14px 0;
  color: var(--ink);
  min-height: 52px;
  font-size: 16px;
}
.field textarea {
  min-height: 125px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #74777c;
  font-size: 14px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
  border-color: var(--blue);
  background: transparent;
}
.form-grid {
  gap: 30px;
}
.field small {
  font-size: 11px;
  color: var(--muted);
}
.check {
  font-size: 12px;
  line-height: 1.55;
}
.check input {
  accent-color: var(--blue);
}
.form-status {
  font-size: 14px;
}
.form-status.is-success {
  color: #1c37a8;
  background: #e7ebff;
  border-color: #aab7ff;
}
.form-status.is-error {
  color: #842b22;
  background: #f9e8e3;
  border-color: #e5b2a9;
}
.studio-brief .button {
  width: 100%;
  margin-top: 10px;
}
.studio-brief .fine-print {
  font-size: 12px;
  max-width: 440px;
  margin-bottom: 0;
}
/* Secondary pages follow the same type, spacing, and unboxed reading system. */
.prose h2,
.legal-layout h2 {
  font-size: 34px;
  letter-spacing: -0.035em;
}
.prose h3 {
  font-family: "Uncut Sans", sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
}
.numbered-list h3,
.principle-grid h3,
.status-table strong,
.destination-list strong {
  font-family: "Uncut Sans", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.note {
  background: transparent;
  border-left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  margin-top: 35px;
}
.note h3 {
  font-size: 22px;
}
.note p {
  font-size: 15px;
}
.note h2 {
  font-size: 30px;
}
.destination-list > div,
.destination-list > a {
  grid-template-columns: 1fr 1.5fr auto;
  gap: 35px;
  padding: 30px 0;
}
.destination-list strong {
  font-size: 23px;
}
.destination-list span:not(.tag) {
  font-size: 15px;
}
.principle-grid {
  gap: 7%;
  padding-block: 50px;
}
.principle-grid h3 {
  font-size: 25px;
}
.principle-grid p {
  font-size: 16px;
}
.community-steps {
  gap: 9%;
}
.community-steps h2 {
  font-size: 42px;
}
.numbered-list h3 {
  font-size: 25px;
}
.numbered-list p {
  font-size: 16px;
}
.journal-list > a {
  grid-template-columns: 1fr 1.1fr;
  gap: 7%;
  padding-block: 48px;
}
.journal-list h2 {
  font-size: 37px;
  font-weight: 460;
  line-height: 1.2;
}
.journal-cover,
.journal-art {
  font-family: "Anybody", sans-serif;
  font-weight: 430;
  background: var(--blue);
  color: var(--paper);
  white-space: pre-line;
  font-size: clamp(44px, 5vw, 78px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  min-height: 340px;
  padding: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.journal-cover.journal-0 {
  background: var(--blue);
  color: var(--paper);
}
.journal-cover.journal-1 {
  background: var(--coral);
  color: var(--ink);
}
.journal-cover.journal-2 {
  background: #e7e9ef;
  color: var(--ink);
}
.journal-list > a:hover h2 {
  color: var(--blue);
}
.filter-bar input,
.filter-bar select {
  border: 1px solid #a4a6a1;
  background: transparent;
  font-size: 15px;
  min-height: 50px;
}
.brand-hero {
  padding: 65px;
  background: var(--blue);
}
.brand-hero img {
  max-width: 870px;
}
.brand-hero p {
  font-size: 22px;
}
.brand-color.white {
  background: var(--paper);
}
.brand-color {
  min-height: 160px;
}
.download-panel {
  background: #eeede8;
  border: 0;
  padding: 35px;
}
.download-panel h2 {
  font-size: 34px;
}
.download-panel p {
  font-size: 16px;
}
.collectible-mark,
.auth-mark {
  font-family: "Anybody", sans-serif;
  font-weight: 720;
  font-stretch: 115%;
  font-style: normal;
  letter-spacing: -0.1em;
}
.collectible-concept {
  padding: 35px;
  min-height: 480px;
}
.concept-label {
  font-size: 12px;
}
.auth-wrap {
  padding-block: 55px 90px;
  gap: 8%;
  background: transparent;
  grid-template-columns: 1fr 1fr;
}
.auth-story {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.auth-story h1,
.membership-gate .auth-story h1 {
  font-size: clamp(40px, 4.2vw, 65px);
  font-weight: 460;
  margin-top: 35px;
}
.auth-story em {
  color: var(--blue);
}
.auth-story p {
  color: var(--muted);
  font-size: 17px;
  max-width: 460px;
  margin-top: 25px;
}
.auth-story .text-link {
  color: var(--ink);
}
.auth-mark {
  color: var(--blue);
  font-size: 160px;
  margin: 45px 0 30px;
}
.auth-story > span {
  font-size: 13px;
  color: var(--muted);
}
.auth-panel {
  background: transparent;
  border: 0;
  padding: 30px 0;
  max-width: 610px;
}
.auth-panel h2 {
  font-size: 35px;
  line-height: 1.15;
}
.auth-panel > p {
  font-size: 16px;
}
.gate-panel {
  align-self: start;
  padding-top: 15px;
}
.gate-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 30px;
}
.gate-status > span {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}
.gate-policy {
  border-block: 1px solid var(--line);
  padding: 28px 0;
  margin: 30px 0;
}
.gate-policy h3 {
  font-family: "Uncut Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.gate-policy p {
  font-size: 15px;
}
.gate-policy p + p {
  margin-top: 14px;
}
.gate-panel > .text-link {
  display: block;
  margin-top: 22px;
}
.gate-panel > .fine-print {
  font-size: 13px;
  margin-top: 30px;
}
.faq summary {
  font-family: "Uncut Sans", sans-serif;
  font-size: 20px;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
}
.faq details[open] summary:after {
  content: "-";
}
.faq summary::-webkit-details-marker {
  display: none;
}
.notice-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  margin-bottom: 80px;
}
.member-heading h1,
.admin-heading h1 {
  font-size: 44px;
}
.admin-stats strong {
  font-family: "Anybody", sans-serif;
  font-weight: 500;
}
.admin-tabs a {
  font-size: 13px;
}
.admin-record summary strong {
  font-weight: 550;
}
.danger {
  background: #932f22;
  border-color: #932f22;
}
.danger:hover {
  background: #682016;
}
.toast {
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
}
@media (min-width: 1700px) {
  .home-title h1 {
    font-size: 116px;
  }
  .studio-opening h1 {
    font-size: 108px;
  }
}
@media (max-width: 1200px) {
  .site-header nav {
    gap: 20px;
  }
  .header-actions {
    gap: 16px;
  }
  .login-link {
    display: none;
  }
  .logo {
    width: 195px;
  }
  .site-header {
    gap: 20px;
  }
  .home-monogram {
    font-size: 70px;
    margin-right: 0;
  }
  .opening-bottom .button-row {
    gap: 20px;
  }
  .studio-opening-bottom {
    grid-template-columns: 0.5fr 1fr auto;
    gap: 35px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 25px;
  }
  .studio-process {
    gap: 4%;
  }
  .capability-list h3 {
    font-size: 24px;
  }
  .detail-layout {
    gap: 6%;
  }
  .status-table > div {
    grid-template-columns: 220px 120px 1fr;
    gap: 25px;
  }
  .article-layout {
    gap: 8%;
    grid-template-columns: 180px 1fr;
  }
  .study-compact {
    min-height: 530px;
  }
  .identity-study {
    min-height: 500px;
  }
  .studio-invitation {
    gap: 6%;
  }
  .pathways {
    gap: 35px;
  }
}
@media (max-width: 960px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px var(--gutter) 35px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 15px #11121608;
    flex-direction: column;
    gap: 0;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav > a {
    font-size: 23px;
    padding-block: 13px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    padding-block: 22px;
  }
  .home-opening {
    padding-top: 35px;
  }
  .home-title h1 {
    font-size: clamp(48px, 7.4vw, 76px);
  }
  .home-monogram {
    display: none;
  }
  .opening-bottom {
    align-items: flex-start;
    gap: 25px;
  }
  .opening-bottom > p {
    max-width: 370px;
    font-size: 16px;
  }
  .opening-bottom .button-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .common-ground > .common-form {
    height: 380px;
  }
  .ground-top h2 {
    font-size: 26px;
  }
  .community-manifesto {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .community-manifesto h2 {
    font-size: clamp(40px, 5.8vw, 59px);
  }
  .pathways {
    gap: 24px;
  }
  .pathways h2 {
    font-size: 31px;
  }
  .pathways p {
    font-size: 14px;
  }
  .studio-invitation {
    grid-template-columns: 1fr 1fr;
    gap: 5%;
  }
  .study-compact {
    min-height: 500px;
    padding: 25px;
  }
  .study-compact .common-form {
    height: 350px;
    width: 150%;
    margin-left: -25%;
  }
  .study-caption {
    font-size: 16px;
  }
  .study-compact .study-caption > span:last-child {
    display: none;
  }
  .study-signature {
    font-size: 22px;
  }
  .studio-opening h1 {
    font-size: clamp(49px, 6.55vw, 70px);
  }
  .studio-opening-bottom {
    grid-template-columns: 80px 1fr auto;
    gap: 35px;
  }
  .round-link {
    width: 100px;
    height: 100px;
    padding: 17px;
    font-size: 12px;
  }
  .studio-seal {
    font-size: 66px;
  }
  .studio-opening-bottom p {
    font-size: 15px;
  }
  .showcase-main .identity-study {
    min-height: 435px;
  }
  .identity-study .common-form {
    height: 340px;
  }
  .work-caption {
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .work-caption h3 {
    font-size: 19px;
  }
  .work-caption > .text-link {
    font-size: 12px;
  }
  .showcase-pair {
    gap: 5%;
    margin-top: 50px;
  }
  .type-study {
    min-height: 395px;
    padding: 25px;
  }
  .poster-inner {
    min-height: 420px;
    padding: 25px;
  }
  .poster-inner strong {
    font-size: 50px;
  }
  .capabilities {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .capabilities-intro p {
    max-width: 490px;
  }
  .capability-list h3 {
    font-size: 27px;
  }
  .capability-detail {
    max-width: 640px;
  }
  .studio-content {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6%;
  }
  .brief-intro h2 {
    font-size: 40px;
  }
  .form-panel h2 {
    font-size: 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .brief-mark {
    font-size: 100px;
  }
  .footer-top p {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > p {
    grid-column: 1/-1;
    font-size: 20px;
  }
  .footer-word {
    font-size: 16.5vw;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span:last-child {
    max-width: none;
    text-align: left;
    flex-basis: 100%;
  }
  .community-steps {
    gap: 6%;
    grid-template-columns: 1fr 1fr;
  }
  .community-steps h2 {
    font-size: 35px;
  }
  .numbered-list li {
    gap: 16px;
  }
  .numbered-list h3 {
    font-size: 22px;
  }
  .numbered-list p {
    font-size: 15px;
  }
  .principle-grid {
    gap: 4%;
  }
  .principle-grid h3 {
    font-size: 22px;
  }
  .principle-grid p {
    font-size: 15px;
  }
  .detail-layout {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .form-panel {
    max-width: none;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .article-layout > aside > p {
    margin: 15px 0;
  }
  .status-table > div {
    grid-template-columns: 1fr 120px;
    gap: 15px;
  }
  .status-table p {
    grid-column: 1/-1;
  }
  .drops-layout {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .collectible-concept {
    min-height: 420px;
  }
  .collectible-mark {
    font-size: 165px;
  }
  .destination-list > a,
  .destination-list > div {
    grid-template-columns: 1fr 1.1fr;
    gap: 25px;
  }
  .destination-list .tag {
    justify-self: start;
  }
  .auth-wrap {
    gap: 6%;
  }
  .auth-story h1,
  .membership-gate .auth-story h1 {
    font-size: 43px;
  }
  .auth-story p {
    font-size: 16px;
  }
  .auth-panel h2 {
    font-size: 31px;
  }
  .auth-panel {
    padding-top: 10px;
  }
  .legal-layout {
    grid-template-columns: 170px 1fr;
    gap: 40px;
  }
  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .member-layout {
    grid-template-columns: 1fr;
  }
  .member-nav {
    position: static;
  }
  .member-nav nav {
    display: flex;
    flex-wrap: wrap;
  }
  .member-id,
  .member-nav > p {
    display: none;
  }
  .admin-record form {
    grid-template-columns: 1fr;
  }
  .member-record {
    flex-wrap: wrap;
  }
  .admin-record > summary {
    grid-template-columns: 1fr auto;
  }
  .audit-list > div {
    grid-template-columns: 1fr 1fr;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }
  body {
    font-size: 16px;
  }
  .announcement {
    justify-content: flex-start;
    padding-top: 13px;
    font-size: 10px;
  }
  .announcement > span {
    display: none;
  }
  .site-header {
    padding-block: 22px;
    gap: 15px;
  }
  .logo {
    width: 174px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-actions > .button {
    min-height: 38px;
    font-size: 11px;
    padding: 9px 11px;
  }
  .header-actions > .membership-nav {
    flex-direction: column;
    gap: 1px;
    width: 84px;
    min-height: 42px;
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.3;
  }
  .membership-nav span {
    font-size: 10px;
  }
  .menu-toggle {
    width: 36px;
    padding: 7px;
  }
  .home-opening {
    padding-top: 25px;
    padding-bottom: 38px;
  }
  .opening-top {
    font-size: 11px;
    gap: 15px;
  }
  .opening-top > .text-link {
    font-size: 12px;
  }
  .home-title {
    margin: 34px 0 28px;
  }
  .home-title h1 {
    font-size: clamp(41px, 8.9vw, 57px);
    line-height: 1.15;
    letter-spacing: -0.055em;
    font-stretch: 100%;
  }
  .opening-bottom {
    display: block;
  }
  .opening-bottom > p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
  }
  .opening-bottom .button-row {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
  }
  .opening-bottom .button {
    min-height: 49px;
    padding: 13px 17px;
    font-size: 13px;
  }
  .opening-bottom .text-link {
    font-size: 12px;
  }
  .common-ground {
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .ground-top h2 {
    font-size: 23px;
    max-width: 210px;
  }
  .ground-top > span {
    display: none;
  }
  .common-ground > .common-form {
    width: 120%;
    max-width: none;
    height: 280px;
    margin: -10px 0 -10px -10%;
  }
  .ground-bottom p {
    font-size: 14px;
  }
  .ground-bottom .text-link {
    font-size: 12px;
    max-width: 160px;
  }
  .section {
    padding-block: 70px;
  }
  .community-manifesto {
    gap: 24px;
  }
  .community-manifesto h2 {
    font-size: 34px;
    line-height: 1.2;
  }
  .manifesto-copy {
    display: block;
    margin-top: 25px;
  }
  .manifesto-copy p {
    font-size: 16px;
    margin-top: 18px;
    max-width: 450px;
  }
  .manifesto-copy .text-link {
    margin-top: 24px;
  }
  .pathways {
    display: block;
  }
  .pathways > a {
    position: relative;
    padding: 24px 0 28px;
  }
  .pathways > a:last-child {
    border-bottom: 1px solid var(--line);
  }
  .pathway-label {
    font-size: 12px;
  }
  .pathways h2 {
    font-size: 34px;
    margin: 22px 0 16px;
  }
  .pathways h2 br {
    display: none;
  }
  .pathways p {
    max-width: 440px;
    font-size: 15px;
    margin-bottom: 18px;
  }
  .pathways .text-link {
    font-size: 13px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 34px;
    line-height: 1.14;
  }
  .section-heading p {
    margin-top: 20px;
    font-size: 14px;
  }
  .section-heading > .text-link {
    margin-top: 22px;
    font-size: 13px;
  }
  .project-row {
    grid-template-columns: 25px 1fr;
    gap: 13px;
    padding: 25px 0;
  }
  .project-row h3 {
    font-size: 25px;
    margin: 12px 0;
  }
  .project-row p {
    font-size: 14px;
  }
  .project-row .small-label {
    font-size: 11px;
  }
  .row-index {
    font-size: 11px;
  }
  .row-action {
    grid-column: 2;
    text-align: left;
    margin-top: 2px;
    font-size: 12px;
  }
  .section-end {
    display: block;
    margin-top: 23px;
  }
  .section-end > span {
    font-size: 11px;
    display: block;
    max-width: 390px;
  }
  .section-end .text-link {
    font-size: 13px;
    margin-top: 16px;
  }
  .studio-invitation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
  }
  .studio-invitation-copy h2 {
    font-size: 40px;
  }
  .studio-invitation-copy h2 br:nth-child(1) {
    display: none;
  }
  .studio-invitation-copy p {
    font-size: 16px;
    margin-block: 23px;
  }
  .studio-invitation-copy .small-label {
    margin-bottom: 18px;
  }
  .studio-invitation-copy .button {
    font-size: 14px;
  }
  .study-compact {
    min-height: 430px;
    padding: 26px;
  }
  .study-compact .common-form {
    height: 330px;
    width: 120%;
    margin-left: -10%;
  }
  .study-compact .study-caption > span:last-child {
    display: block;
  }
  .editorial-row {
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .editorial-symbol {
    width: 58px;
    height: 64px;
    font-size: 41px;
  }
  .editorial-text .small-label {
    font-size: 10px;
  }
  .editorial-text h3 {
    font-size: 22px;
    line-height: 1.22;
  }
  .editorial-action {
    grid-column: 2;
    text-align: left;
    font-size: 12px;
    margin-top: -6px;
  }
  .join-banner {
    display: block;
    padding: 45px 0 60px;
  }
  .join-banner h2 {
    font-size: 36px;
  }
  .join-banner p {
    font-size: 15px;
    max-width: 350px;
  }
  .join-banner .button {
    margin-top: 25px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    display: block;
  }
  .footer-top > a:first-child {
    display: block;
    width: 215px;
  }
  .footer-social {
    display: inline-block;
    margin-top: 28px;
    font-size: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    margin-top: 45px;
  }
  .footer-grid > p {
    font-size: 17px;
    max-width: 320px;
  }
  .footer-grid h2 {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .footer-grid a {
    font-size: 13px;
    line-height: 1.5;
    min-height: 28px;
    margin-bottom: 5px;
  }
  .footer-word {
    font-size: 16vw;
    margin: 40px auto 30px;
  }
  .footer-bottom {
    font-size: 10px;
    gap: 20px;
  }
  .footer-bottom > span:last-child {
    line-height: 1.5;
    max-width: 340px;
  }
  .page-intro {
    padding: 25px 0 44px;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 12px;
    margin-bottom: 33px;
  }
  .page-intro h1 {
    font-size: clamp(38px, 8.5vw, 54px);
    line-height: 1.15;
    letter-spacing: -0.05em;
    font-stretch: 100%;
  }
  .intro-copy {
    font-size: 17px;
    margin-top: 24px;
    line-height: 1.6;
  }
  .studio-opening {
    padding-top: 25px;
    padding-bottom: 44px;
  }
  .studio-opening h1 {
    font-size: clamp(41px, 8.9vw, 58px);
    margin-top: 35px;
    line-height: 1.15;
    font-stretch: 100%;
    letter-spacing: -0.05em;
  }
  .studio-opening h1 br {
    display: none;
  }
  .studio-opening h1 em {
    display: block;
    margin-top: 2px;
  }
  .studio-opening-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 25px;
  }
  .studio-seal {
    display: none;
  }
  .studio-opening-bottom p {
    font-size: 15px;
    line-height: 1.6;
  }
  .round-link {
    width: auto;
    height: auto;
    min-height: 44px;
    padding: 10px 0;
    font-size: 13px;
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    justify-self: start;
  }
  .studio-showcase > .section-heading {
    display: block;
    margin-bottom: 18px;
  }
  .studio-showcase > .section-heading h2 {
    font-size: 19px;
  }
  .studio-showcase > .section-heading p {
    font-size: 11px;
    text-align: left;
    margin-top: 8px;
  }
  .showcase-main .identity-study {
    min-height: 360px;
    padding: 25px 24px;
  }
  .study-signature {
    font-size: 21px;
  }
  .identity-study .common-form {
    height: 280px;
    width: 125%;
    max-width: none;
    margin: -10px 0 -15px -12.5%;
  }
  .study-caption {
    font-size: 14px;
  }
  .work-caption {
    display: block;
    padding-top: 16px;
  }
  .work-caption h3 {
    font-size: 19px;
    margin-bottom: 5px;
  }
  .work-caption > span {
    font-size: 11px;
  }
  .work-caption .text-link {
    display: block;
    font-size: 12px;
    margin: 8px 0 0;
  }
  .showcase-pair {
    display: block;
    margin-top: 37px;
  }
  .type-study {
    min-height: 390px;
    padding: 26px;
  }
  .type-study-word {
    font-size: 100px;
    padding-block: 35px;
    max-width: 460px;
  }
  .type-study > span:last-child {
    font-size: 11px;
  }
  .poster-study {
    padding-top: 35px;
    width: 90%;
    margin-left: auto;
  }
  .poster-inner {
    min-height: 440px;
    padding: 26px;
  }
  .poster-inner strong {
    font-size: 59px;
  }
  .poster-study > p {
    font-size: 13px;
    max-width: 290px;
  }
  .capabilities {
    gap: 30px;
  }
  .capabilities-intro > .small-label {
    margin-bottom: 20px;
  }
  .capabilities-intro h2 {
    font-size: 34px;
  }
  .capabilities-intro p {
    font-size: 15px;
    margin-top: 22px;
  }
  .capability-list summary {
    gap: 18px;
    padding-block: 23px;
  }
  .capability-list h3 {
    font-size: 23px;
  }
  .capability-number {
    font-size: 11px;
  }
  .capability-detail {
    padding: 0 20px 26px 32px;
  }
  .capability-detail p {
    font-size: 15px;
  }
  .capability-detail .text-link {
    font-size: 13px;
  }
  .process-section {
    padding-block: 50px;
  }
  .studio-process {
    display: block;
  }
  .studio-process li {
    padding-top: 18px;
    margin-top: 28px;
  }
  .studio-process h3 {
    font-size: 23px;
    margin: 19px 0 12px;
  }
  .studio-process p {
    font-size: 15px;
    max-width: 420px;
  }
  .studio-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .brief-intro > .small-label {
    margin-bottom: 20px;
  }
  .brief-intro h2 {
    font-size: 44px;
  }
  .brief-intro > p {
    font-size: 16px;
    margin-top: 25px;
  }
  .brief-expectation {
    margin-top: 28px;
    padding-top: 22px;
  }
  .brief-mark {
    display: none;
  }
  .studio-brief {
    border-top: 1px solid var(--ink);
    padding-top: 26px;
  }
  .studio-brief h2 {
    font-size: 31px;
  }
  .studio-brief > p {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .field {
    margin-bottom: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-panel {
    padding-inline: 0;
  }
  .form-panel h2 {
    font-size: 30px;
  }
  .form-panel > p {
    font-size: 15px;
  }
  .check {
    font-size: 12px;
  }
  .field > span {
    font-size: 13px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
  .cf-turnstile {
    max-width: 100%;
    overflow: hidden;
  }
  .community-steps {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .community-steps h2 {
    font-size: 35px;
  }
  .numbered-list h3 {
    font-size: 24px;
  }
  .numbered-list p {
    font-size: 15px;
  }
  .principle-grid {
    grid-template-columns: 1fr;
    padding: 10px 0 30px;
    gap: 32px;
  }
  .principle-grid h3 {
    font-size: 25px;
  }
  .principle-grid p {
    max-width: 440px;
  }
  .destination-list > a,
  .destination-list > div {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 27px 0;
  }
  .destination-list strong {
    font-size: 24px;
  }
  .destination-list span:not(.tag) {
    font-size: 15px;
  }
  .filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  .filter-bar input {
    grid-column: 1/-1;
    width: 100%;
  }
  .filter-bar label:first-child {
    grid-column: 1/-1;
  }
  .filter-bar select {
    width: 100%;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .prose h2,
  .legal-layout h2 {
    font-size: 29px;
  }
  .prose h3 {
    font-size: 22px;
  }
  .prose p {
    font-size: 16px;
  }
  .note {
    padding-block: 23px;
  }
  .note h3 {
    font-size: 23px;
  }
  .note p {
    font-size: 14px;
  }
  .journal-list > a {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 35px;
  }
  .journal-list h2 {
    font-size: 32px;
    margin: 16px 0;
  }
  .journal-list p {
    font-size: 15px;
  }
  .journal-cover {
    min-height: 300px;
    font-size: 60px;
  }
  .journal-list > a > .text-link {
    margin-bottom: 0;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .status-table > div {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .status-table strong {
    font-size: 20px;
  }
  .status-table p {
    font-size: 14px;
  }
  .roadmap h3 {
    font-size: 26px;
  }
  .drops-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .drops-layout > div {
    min-width: 0;
  }
  .collectible-concept {
    min-height: 440px;
    padding: 25px;
  }
  .collectible-mark {
    font-size: clamp(150px, 48vw, 210px);
  }
  .notice-strip {
    display: block;
    margin-bottom: 55px;
  }
  .notice-strip p {
    margin: 15px 0;
    font-size: 14px;
  }
  .brand-hero {
    padding: 45px 25px;
  }
  .brand-hero p {
    font-size: 17px;
  }
  .brand-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 14px;
  }
  .brand-color {
    min-height: 110px;
    padding: 25px;
  }
  .download-panel {
    padding: 30px;
  }
  .download-panel h2 {
    font-size: 31px;
  }
  .legal-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .legal-layout nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
  }
  .auth-wrap {
    grid-template-columns: 1fr;
    padding-block: 30px 55px;
    gap: 35px;
  }
  .auth-story {
    min-height: 0;
    padding: 0;
  }
  .auth-story h1,
  .membership-gate .auth-story h1 {
    font-size: 42px;
    margin-top: 26px;
    line-height: 1.17;
  }
  .auth-story h1 br {
    display: none;
  }
  .auth-story h1 em {
    display: block;
  }
  .auth-story p {
    font-size: 16px;
    margin-top: 24px;
    max-width: 430px;
  }
  .auth-mark {
    font-size: 95px;
    margin: 25px 0 20px;
  }
  .membership-gate .auth-mark {
    display: none;
  }
  .membership-gate .auth-story > span {
    margin-top: 24px;
  }
  .auth-panel {
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
    max-width: 100%;
  }
  .auth-panel h2 {
    font-size: 31px;
  }
  .gate-panel > .fine-print {
    font-size: 13px;
  }
  .gate-status {
    margin-bottom: 25px;
  }
  .gate-policy {
    margin-block: 25px;
    padding-block: 25px;
  }
  .faq {
    margin-top: 30px;
  }
  .faq summary {
    font-size: 20px;
  }
  .admin-heading {
    display: block;
  }
  .admin-heading h1,
  .member-heading h1 {
    font-size: 34px;
  }
  .admin-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
  }
  .admin-stats strong {
    font-size: 36px;
  }
  .admin-stats span {
    font-size: 11px;
  }
  .admin-tabs {
    overflow: auto;
    gap: 20px;
    white-space: nowrap;
    max-width: 100%;
  }
  .admin-record > summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .record-body {
    padding: 20px 15px;
  }
  .record-meta {
    display: block;
  }
  .record-meta > div {
    margin-bottom: 12px;
  }
  .admin-record form {
    grid-template-columns: 1fr;
  }
  .admin-record {
    overflow-wrap: anywhere;
  }
  .member-record {
    display: block;
  }
  .member-record form {
    margin-top: 20px;
  }
  .audit-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .admin-form {
    padding: 25px 0;
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .member-layout {
    grid-template-columns: 1fr;
  }
  .member-heading {
    display: block;
  }
  .member-heading > .button {
    margin-top: 20px;
  }
  .hub-welcome {
    padding: 25px;
    display: block;
  }
  .hub-welcome .mini-mark {
    display: none;
  }
  .discussion {
    grid-template-columns: 40px 1fr;
    gap: 15px;
  }
  .discussion h2 {
    font-size: 25px;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
  .account-grid .form-panel {
    padding: 25px 0;
  }
  .event-card {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .poll {
    padding: 25px;
  }
  .compact {
    gap: 15px;
  }
  .compact h2 {
    font-size: 28px;
  }
  dialog {
    padding: 25px 22px;
  }
  .dialog-header h2 {
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  :root {
    --gutter: 18px;
  }
  .site-header {
    gap: 10px;
  }
  .logo {
    width: 142px;
  }
  .header-actions {
    gap: 7px;
  }
  .header-actions > .button {
    font-size: 10px;
    padding: 8px;
  }
  .home-title h1 {
    font-size: 37px;
  }
  .home-title h1 em {
    white-space: normal;
  }
  .studio-opening h1 {
    font-size: 38px;
  }
  .studio-opening-bottom {
    grid-template-columns: 1fr;
  }
  .round-link {
    width: auto;
    height: auto;
    min-height: 44px;
    border-radius: 0;
    justify-self: start;
    padding: 12px 18px;
  }
  .type-study-word {
    font-size: 88px;
  }
  .poster-inner strong {
    font-size: 52px;
  }
  .footer-word {
    font-size: 15.8vw;
  }
  .cf-turnstile {
    transform: scale(0.9);
    transform-origin: left top;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .common-ground:hover .loop-one,
  .common-ground:hover .loop-two,
  .showcase-main:hover .loop-two,
  .studio-invitation-art:hover .loop-two {
    transform: none;
  }
}
